home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / web26 / Tutorial 5 Review / programs.css < prev    next >
Cascading Style Sheet File  |  2011-03-04  |  1KB  |  36 lines

  1. /*
  2.    New Perspectives on HTML and XHTML 5th Edition
  3.    Tutorial 5
  4.    Review Assignment
  5.  
  6.    Programming Table Style Sheet
  7.    Author: Amber Shaw    
  8.    Date:   3/3/11 
  9.    Filename:         programs.css
  10.    Supporting Files: left.jpg, right.jpg, top.jpg, topleft.jpg, topright.jpg 
  11.  
  12. */
  13.  
  14.  
  15. table.schedule {border-collapse: collapse; font-family: Trebuchet, Arial, Verdana, sans-serif; font-size: .7em; width: 100%; }
  16.  
  17.  
  18. table.schedule td {border-left: 1px solid gray; border-bottom: 1px solid gray;}
  19.  
  20. table.schedule thead {border-bottom: 1px solid gray; color: white; background-color: rgb(105,177,60)}
  21.  
  22. table.schedule tbody td {vertical-align: top; padding: ;}
  23.  
  24.  
  25. table.schedule thead tr {height: 25px}
  26. table.schedule tbody tr {height: 25px}
  27.  
  28.  
  29. table.schedule caption {caption-side: top; text-align: right; font-size: .8em;}
  30.  
  31.  
  32.  
  33. table.schedule col.timeColumn {width: 7%; background-color: rgb(215,205,151); background: url(left.jpg) repeat-y top left}
  34. table.schedule col.daysColumn {width: 13%;}
  35. table.schedule col.lastColumn {width: 13%; background-color: rgb(255,255,255); background: url(right.jpg) repeat-y top right}
  36.